outputs

object outputs : ReadWriteProperty<Any?, String>

A setter to set outputs.

Can be delegated from. Property names will be converted to snake-case unless name is specified. Delegates return "" if the delegate hasn't been set, or the value set by that delegate if it has been used.

Functions

getValue
Link copied to clipboard
open operator override fun getValue(thisRef: Any?, property: KProperty<*>): String
invoke
Link copied to clipboard
operator fun invoke(name: String): ReadWriteProperty<Any?, String>
Get a delegate for name.
set
Link copied to clipboard
operator fun set(name: String, value: String)
Set an output name to value.
setAll
Link copied to clipboard
fun setAll(outputs: Map<String, String>)
Set all outputs from outputs.
setValue
Link copied to clipboard
open operator override fun setValue(thisRef: Any?, property: KProperty<*>, value: String)

Sources

js source
Link copied to clipboard